home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ICS 1.xpl < prev    next >
Text File  |  2001-02-10  |  1KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Connection Sharing"
  5. "NAME"="ICS Hangup Timers"
  6. "OSVERSION"="00101"
  7. "VERSION"="1.20"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Client Timeout (s)"
  10. "DESCRIPTION 1"="The "Client Timeout" setting controls how long Windows 98/ME ICS should wait after the last request from a client before hanging up the modem (in seconds). Basically, this means how long the modem can go idle before the line will be terminated."
  11. "DESCRIPTION 2"="The default value is 300."
  12. "COMMENT 1"=" "
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16.  
  17. 'Declaration of some constants
  18. sP="HKLM\System\CurrentControlSet\Services\ICSharing\Settings\General\"
  19. sV1="HangupTimer"
  20.  
  21. 'Called when the Plugin is started
  22. SUB Plugin_Initialize
  23.  if RegPathExists(sP) then
  24.     i=RegReadValue(sp & sv1)
  25.     SetUIElement 1,i 
  26.  else
  27.     Disable
  28.  end if
  29. END SUB
  30.  
  31. 'Called when the Plugin should validate the Data the user has entered
  32. SUB Plugin_CheckData(ElementIndex)
  33. END SUB
  34.  
  35. 'Called when the Plugin should apply the changes
  36. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  i=GetUIElement(1)
  38.  
  39.  if i<1 then
  40.    Call MsgError("Please enter a value bigger than 1!")
  41.  else
  42.    Call RegWriteValue(sp & sv1,i,1)
  43.    Call Restart
  44.  end if
  45.  
  46. END SUB
  47.  
  48. 'Called when the Plugin is about to be removed from memory
  49. SUB Plugin_Terminate
  50. END SUB
  51.